de773c263c84aa1bb08c5dbd70a6a99b79a26f99,src/megameklab/com/ui/Infantry/Printing/PrintInfantry.java,PrintInfantry,printImage,#Graphics2D#PageFormat#,112

Before Change


	        			}
	        		}
        		}
        		if (rangeWeapon.hasFlag(WeaponType.F_INF_AA)) {
        			notes.add("Can attack airborn units.");
        		}
        		if (infantry.hasSpecialization(Infantry.BRIDGE_ENGINEERS)) {

After Change


		        		}
	        		}
        		}
        		if (infantry.getPrimaryWeapon().hasFlag(WeaponType.F_INF_AA)
        				|| (infantry.getSecondaryWeapon() != null
        						&& infantry.getSecondaryWeapon().hasFlag(WeaponType.F_INF_AA))) {
        			notes.add("Can attack airborn units.");
        		}